Defines methods to manipulate ordered sets.

Namespace:  C1.Silverlight
Assembly:  C1.Silverlight (in C1.Silverlight.dll)

Syntax

C#
[DefaultMemberAttribute("Item")]
public interface IOrderedSet<T> : ICollection<T>, 
	IEnumerable<T>, IEnumerable
Visual Basic
<DefaultMemberAttribute("Item")> _
Public Interface IOrderedSet(Of T) _
	Inherits ICollection(Of T), IEnumerable(Of T), IEnumerable

Type Parameters

T
The type of the elements in the collection.

See Also